home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / INTLDEMO.PAK / INTLDEMO.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  101 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1996 by Borland International
  3. //   intldemo.h
  4. //----------------------------------------------------------------------------
  5. #ifndef __INTLDEMO_H
  6. #define __INTLDEMO_H
  7.  
  8. //Menu IDs
  9. #define CM_FILELIST             300
  10.  
  11. #define CM_LOCALEC              310
  12. #define CM_LOCALEUS             311
  13. #define CM_LOCALEUK             312
  14. #define CM_LOCALEFRENCH         313
  15. #define CM_LOCALEGERMAN         314
  16.  
  17. #define CM_LANGUAGEENGLISH      320
  18. #define CM_LANGUAGEFRENCH       321
  19. #define CM_LANGUAGEGERMAN       322
  20.  
  21. #define CM_ISALNUM              400
  22. #define CM_ISALPHA              401
  23. #define CM_ISASCII              402
  24. #define CM_ISCNTRL              403
  25. #define CM_ISDIGIT              404
  26. #define CM_ISGRAPH              405
  27. #define CM_ISLOWER              406
  28. #define CM_ISPRINT              407
  29. #define CM_ISPUNCT              408
  30. #define CM_ISSPACE              409
  31. #define CM_ISUPPER              410
  32. #define CM_ISXDIGIT             411
  33.  
  34. #define CM_SHOWVALUES           500
  35.  
  36. //Dialog and control IDs
  37.  
  38. #define LIST_DIALOG             100
  39. #define ID_LOCALEWINDOW         101
  40. #define ID_FILEVIEWER           200
  41.  
  42. #define ID_FILELISTBOX          100
  43.  
  44. #define ID_SORTBUT              102
  45. #define ID_TOLOWERBUT           103
  46. #define ID_VIEWBUTTON           104
  47.  
  48. // bitmap button IDs
  49. #define IDB_VIEW ID_VIEWBUTTON + 1000
  50. #define IDB_LVIEW IDB_VIEW + 1000
  51. #define IDB_VIEWD IDB_LVIEW + 1000
  52. #define IDB_LVIEWD IDB_VIEWD + 1000
  53. #define IDB_VIEWF IDB_LVIEWD + 1000
  54. #define IDB_LVIEWF IDB_VIEWF + 1000
  55.  
  56. #define IDB_TOLOWER ID_TOLOWERBUT + 1000
  57. #define IDB_LTOLOWER IDB_TOLOWER + 1000
  58. #define IDB_TOLOWERD IDB_LTOLOWER + 1000
  59. #define IDB_LTOLOWERD IDB_TOLOWERD + 1000
  60. #define IDB_TOLOWERF IDB_LTOLOWERD + 1000
  61. #define IDB_LTOLOWERF IDB_TOLOWERF + 1000
  62.  
  63. #define IDB_SORT ID_SORTBUT + 1000
  64. #define IDB_LSORT IDB_SORT + 1000
  65. #define IDB_SORTD IDB_LSORT + 1000
  66. #define IDB_LSORTD IDB_SORTD + 1000
  67. #define IDB_SORTF IDB_LSORTD + 1000
  68. #define IDB_LSORTF IDB_SORTF + 1000
  69.  
  70. //String IDS
  71. #define IDS_APPNAME             1
  72. #define IDS_LOCALETITLE         16
  73. #define IDS_DECIMALPOINT        17
  74. #define IDS_THOUSANDSSEP        18
  75. #define IDS_GROUPING            19
  76. #define IDS_INTCURRSYMBOL       20
  77. #define IDS_CURRENCYSYMBOL      21
  78. #define IDS_MONDECIMALPOINT     22
  79. #define IDS_MONTHOUSANDSSEP     23
  80. #define IDS_MONGROUPING         24
  81. #define IDS_POSITIVESIGN        25
  82. #define IDS_NEGATIVESIGN        26
  83. #define IDS_INTFRACDIGITS       27
  84. #define IDS_FRACDIGITS          28
  85. #define IDS_PCSPRECEDES         29
  86. #define IDS_PSEPBYSPACE         30
  87. #define IDS_NCSPRECEDES         31
  88. #define IDS_NSEPBYSPACE         32
  89. #define IDS_PSIGNPOSN           33
  90. #define IDS_N_SIGN_POSN         34
  91. #define IDS_YES                 35
  92. #define IDS_NO                  36
  93. #define IDS_NOT_DEFINED         37
  94.  
  95. #define IDS_CHARACTER           48
  96.  
  97. //Message IDs
  98. #define WM_VALWNDCLOSE WM_USER + 1
  99.  
  100. #endif //__INTLDEMO_H
  101.